home *** CD-ROM | disk | FTP | other *** search
/ PCGUIA 127 / PC Guia 127.iso / Software / Utils / TightVNC / Bin / tightvnc-1.3dev7-setup.exe / {app} / Web / doc / unix / README.txt
Encoding:
Text File  |  2005-07-06  |  8.3 KB  |  183 lines

  1.  
  2. TightVNC 1.2.9 Source Distribution for Unix platforms
  3. =====================================================
  4.  
  5. TightVNC is Copyright (C) 2001-2003 Constantin Kaplinsky.  All Rights Reserved.
  6. VNC is Copyright (C) 1999 AT&T Laboratories Cambridge.  All Rights Reserved.
  7. This software is distributed under the GNU General Public Licence as published
  8. by the Free Software Foundation.  See the file LICENCE.TXT for the conditions
  9. under which this software is made available.  VNC also contains code from other
  10. sources.  See the Acknowledgements section below, and the individual files for
  11. details of the conditions under which they are made available.
  12.  
  13.  
  14. There are five programs here:
  15.  
  16.     vncviewer - this is the VNC viewer, or client, program for X.
  17.  
  18.     vncserver - this is a wrapper script which makes starting an X VNC
  19.             server (i.e. desktop) more convenient.  It is written in
  20.             Perl, so to use the script you need that.
  21.  
  22.     vncpasswd - this program allows you to change the password used to
  23.             access your X VNC desktops.  The vncserver script uses
  24.             this program when you first start a VNC server.
  25.  
  26.     vncconnect - this program tells a running instance of Xvnc to connect
  27.              to a listening VNC viewer (normally the connection is made
  28.              the other way round i.e. the viewer connects to Xvnc).
  29.  
  30.     Xvnc - this is the X VNC server - it is both an X server and a VNC
  31.            server.  You normally use the vncserver script to start Xvnc.
  32.  
  33.  
  34. First you must have a reasonably recent version of X installed (this includes
  35. /usr/openwin on Solaris machines).  Also, TightVNC requires JPEG and zlib
  36. libraries installed in the system (e.g. under /usr/local).  To build
  37. everything but Xvnc, do:
  38.  
  39.     % xmkmf
  40.     % make World
  41.  
  42. This should build first the vncauth library which is used by each of the
  43. programs, then vncviewer, vncpasswd and vncconnect.
  44.  
  45. Xvnc differs from the other programs in that it is built inside a cut-down
  46. version of the X build tree.  This is based around the XFree86 3.3.2 "server
  47. only" distribution, which in turn is based on the X11R6.3 distribution from
  48. the X consortium.  To build Xvnc, do:
  49.  
  50.     % cd Xvnc
  51.     % ./configure
  52.     % make
  53.  
  54. If you have trouble building Xvnc, see the Xvnc/README file for more details.
  55.  
  56. If it all builds OK you should copy the programs to some directory which
  57. is in your PATH environment variable, such as /usr/local/bin.  Also, it's
  58. handy to install manual pages in a directory where the man utility can find
  59. them.  You can use the vncinstall script to do this for you (man path is
  60. optional):
  61.  
  62.     % cd ..
  63.     % ./vncinstall /usr/local/bin /usr/local/man
  64.  
  65. If you want to use the Java VNC viewer, you should copy the class files from
  66. the classes directory to some suitable installation directory such as
  67. /usr/local/vnc/classes:
  68.  
  69.     % mkdir -p /usr/local/vnc/classes
  70.     % cp classes/* /usr/local/vnc/classes
  71.  
  72. We recommend that you use the vncserver script to run Xvnc for you.  You can
  73. edit the script as appropriate for your site.  Things you may need to change
  74. include:
  75.  
  76.  * The location of Perl - if Perl is not installed in /usr/bin you'll need
  77.    to edit the "#!/usr/bin/perl" first line of vncserver.
  78.  
  79.  * $vncClasses - this specifies the location of the Java classes for
  80.    the VNC viewer applet.  The default is /usr/local/vnc/classes.
  81.  
  82.  * Xvnc's font path and color database.  If you have an installation of
  83.    X which is not in the standard place you may need to add arguments to the
  84.    Xvnc command line to set these.  These should be appended to the $cmd
  85.    variable at the comment "# Add font path and color database...".
  86.  
  87.  
  88.  
  89. ACKNOWLEDGEMENTS
  90. ================
  91.  
  92. This distribution contains public domain DES software by Richard Outerbridge.
  93. This is:
  94.  
  95.     Copyright (c) 1988,1989,1990,1991,1992 by Richard Outerbridge.
  96.     (GEnie : OUTER; CIS : [71755,204]) Graven Imagery, 1992.
  97.  
  98.  
  99. This distribution contains software from the X Window System, Version 11,
  100. Release 6.3.  This is:
  101.  
  102.     Copyright c 1996 X Consortium
  103.     
  104.     Permission is hereby granted, free of charge, to any person obtaining a
  105.     copy of this software and associated documentation files (the
  106.     "Software"), to deal in the Software without restriction, including
  107.     without limitation the rights to use, copy, modify, merge, publish, dis-
  108.     tribute, sublicense, and/or sell copies of the Software, and to permit
  109.     persons to whom the Software is furnished to do so, subject to the fol-
  110.     lowing conditions:
  111.     
  112.     The above copyright notice and this permission notice shall be included
  113.     in all copies or substantial portions of the Software.
  114.     
  115.     THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  116.     OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABIL-
  117.     ITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT
  118.     SHALL THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABIL-
  119.     ITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  120.     OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  121.     IN THE SOFTWARE.
  122.     
  123.     Except as contained in this notice, the name of the X Consortium shall
  124.     not be used in advertising or otherwise to promote the sale, use or
  125.     other dealings in this Software without prior written authorization from
  126.     the X Consortium.
  127.     
  128.     X Window System is a trademark of X Consortium, Inc.
  129.  
  130.  
  131. This distribution contains Java DES software by Dave Zimmerman
  132. <dzimm@widget.com> and Jef Poskanzer <jef@acme.com>.  This is:
  133.  
  134.     Copyright (c) 1996 Widget Workshop, Inc. All Rights Reserved.
  135.  
  136.     Permission to use, copy, modify, and distribute this software and its
  137.     documentation for NON-COMMERCIAL or COMMERCIAL purposes and without fee
  138.     is hereby granted, provided that this copyright notice is kept intact.
  139.     
  140.     WIDGET WORKSHOP MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE
  141.     SUITABILITY OF THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT
  142.     NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
  143.     PARTICULAR PURPOSE, OR NON-INFRINGEMENT. WIDGET WORKSHOP SHALL NOT BE
  144.     LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING,
  145.     MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES.
  146.     
  147.     THIS SOFTWARE IS NOT DESIGNED OR INTENDED FOR USE OR RESALE AS ON-LINE
  148.     CONTROL EQUIPMENT IN HAZARDOUS ENVIRONMENTS REQUIRING FAIL-SAFE
  149.     PERFORMANCE, SUCH AS IN THE OPERATION OF NUCLEAR FACILITIES, AIRCRAFT
  150.     NAVIGATION OR COMMUNICATION SYSTEMS, AIR TRAFFIC CONTROL, DIRECT LIFE
  151.     SUPPORT MACHINES, OR WEAPONS SYSTEMS, IN WHICH THE FAILURE OF THE
  152.     SOFTWARE COULD LEAD DIRECTLY TO DEATH, PERSONAL INJURY, OR SEVERE
  153.     PHYSICAL OR ENVIRONMENTAL DAMAGE ("HIGH RISK ACTIVITIES").  WIDGET
  154.     WORKSHOP SPECIFICALLY DISCLAIMS ANY EXPRESS OR IMPLIED WARRANTY OF
  155.     FITNESS FOR HIGH RISK ACTIVITIES.
  156.  
  157.     Copyright (C) 1996 by Jef Poskanzer <jef@acme.com>.  All rights
  158.     reserved.
  159.  
  160.     Redistribution and use in source and binary forms, with or without
  161.     modification, are permitted provided that the following conditions
  162.     are met:
  163.     1. Redistributions of source code must retain the above copyright
  164.        notice, this list of conditions and the following disclaimer.
  165.     2. Redistributions in binary form must reproduce the above copyright
  166.        notice, this list of conditions and the following disclaimer in the
  167.        documentation and/or other materials provided with the distribution.
  168.  
  169.     THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
  170.     ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  171.     IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  172.     PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS
  173.     BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  174.     CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  175.     SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
  176.     BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  177.     WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
  178.     OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
  179.     ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  180.  
  181.     Visit the ACME Labs Java page for up-to-date versions of this and other
  182.     fine Java utilities: http://www.acme.com/java/
  183.